home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / UTILFILE / UNPROT2.LZH / PRNTMSTR.UNP < prev    next >
Text File  |  1985-08-29  |  1KB  |  28 lines

  1. This patch allows the user to unprotect PrintMaster, published recently
  2. (1985) by Unison World, Inc.  The following steps assume that DEBUG.COM
  3. and the file PMMAIN.EXE are on the default disk drive.  If not, add
  4. a drive specifier (A:, B:, C:, etc.) to the file names shown below.
  5. The procedure is as follows:
  6.  
  7.      REN PMMAIN.EXE PMMAIN
  8.      DEBUG PMMAIN
  9.      S 0000 FFFE CD 13  (This should return an address in the form
  10.           xxxx:6C73, where xxxx is the current code segment.  If the
  11.           second part of the address is not 6C73, you have a different
  12.           version, and this patch probably will not work.  If it is
  13.           6C73, proceed with the following steps.)
  14.      E 6C73 90 90
  15.      E 6C7A 90
  16.      W
  17.      Q
  18.      REN PMMAIN PMMAIN.EXE
  19.  
  20. The version you have now created will run from an unprotected
  21. floppy in drive A, but since some of the file names used by the
  22. program are hard coded to be on drive A, there is another step to be
  23. performed before it can be run from the hard disk or RAM disk.
  24. The DOS command ASSIGN A=C must be executed (assuming the hard disk
  25. or RAM disk is drive C).  This will direct all calls for drive A to
  26. drive C, where the program and its files are.
  27.  
  28.